-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
revert: from empty string to null #29893
revert: from empty string to null #29893
Conversation
Still making videos, will update sooner |
@@ -127,7 +127,7 @@ const defaultProps = { | |||
* @returns {String} | |||
*/ | |||
function getReportID(route) { | |||
return String(lodashGet(route, 'params.reportID', '')); | |||
return String(lodashGet(route, 'params.reportID', null)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's add a comment explaining that reportID
should not be empty.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yup, doing that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Whoa, coming from the conversation here, seems this is a system design issue because we shouldn't return a string "null" if the reportID doesn't exist. Hopefully, this will be solved (or at least tracked) when we migrate this file to TS
@fedirjh updated videos and tests in the PR description |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good
Co-authored-by: Fedi Rajhi <[email protected]>
@5war00p Could you please link the original issue as well, we need that for automation to work correctly. $ #29116 |
Done |
Reviewer Checklist
Screenshots/VideosWebCleanShot.2023-10-19.at.14.43.51.mp4Mobile Web - ChromeCleanShot.2023-10-19.at.15.22.29.mp4CleanShot.2023-10-19.at.15.23.46.mp4Mobile Web - SafariCleanShot.2023-10-19.at.14.57.21-converted.mp4DesktopCleanShot.2023-10-19.at.14.54.01.mp4iOSCleanShot.2023-10-19.at.15.11.26.mp4AndroidCleanShot.2023-10-19.at.15.54.37.mp4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
✋ This PR was not deployed to staging yet because QA is ongoing. It will be automatically deployed to staging after the next production release. |
🚀 Deployed to staging by https://github.com/marcochavezf in version: 1.3.88-0 🚀
|
🚀 Deployed to production by https://github.com/chiragsalian in version: 1.3.88-11 🚀
|
Details
reverted back to setting null for report-id, as onyx needs to return empty
Fixed Issues
$ #29116
$ #29871
PROPOSAL: #29116 (comment)
Tests
Logout if you're already loggedin
Goto Login page and do login
Open dev tools (based on platform)
There should be no console errors
Offline tests
NA - As the issue is with network logs, its not possible to simulate in offline mode
QA Steps
Same as above
PR Author Checklist
### Fixed Issues
section aboveTests
sectionOffline steps
sectionQA steps
sectiontoggleReport
and notonIconClick
)myBool && <MyComponent />
.src/languages/*
files and using the translation methodWaiting for Copy
label for a copy review on the original GH to get the correct copy.STYLE.md
) were followedAvatar
, I verified the components usingAvatar
are working as expected)/** comment above it */
this
properly so there are no scoping issues (i.e. foronClick={this.submit}
the methodthis.submit
should be bound tothis
in the constructor)this
are necessary to be bound (i.e. avoidthis.submit = this.submit.bind(this);
ifthis.submit
is never passed to a component event handler likeonClick
)StyleUtils.getBackgroundAndBorderStyle(themeColors.componentBG)
)Avatar
is modified, I verified thatAvatar
is working as expected in all cases)ScrollView
component to make it scrollable when more elements are added to the page.main
branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to theTest
steps.Screenshots/Videos
Android: Native
Kapture.2023-10-18.at.23.53.35.mp4
Android: mWeb Chrome
android-web.mp4
iOS: Native
Kapture.2023-10-18.at.23.45.46.mp4
iOS: mWeb Safari
Kapture.2023-10-18.at.23.47.42.mp4
MacOS: Chrome / Safari
web.mp4
MacOS: Desktop
desktop.mp4